body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.form-container {
    width: 300px;
    padding: 20px;
    border: 1px solid #dcdbdb;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgb(115, 103, 240);
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

h5 {
    margin-top: 20px;
    text-align: center;
}

.flash-error {
    color: red;
}